aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/balances/page.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
commit57899b0160385c53df4e43ef2fd12492e0dffb77 (patch)
tree83f616c406c2d37aec2250bb0c44fcb8d701c177 /src/app/groups/[groupId]/balances/page.tsx
parent6ce2329f5ce20f8352e3ea15594f2532ab8a392c (diff)
Reimbursements
Diffstat (limited to 'src/app/groups/[groupId]/balances/page.tsx')
-rw-r--r--src/app/groups/[groupId]/balances/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/groups/[groupId]/balances/page.tsx b/src/app/groups/[groupId]/balances/page.tsx
index 33ba653..ab2c582 100644
--- a/src/app/groups/[groupId]/balances/page.tsx
+++ b/src/app/groups/[groupId]/balances/page.tsx
@@ -22,7 +22,6 @@ export default async function GroupPage({
const expenses = await getGroupExpenses(groupId)
const balances = getBalances(expenses)
const reimbursements = getSuggestedReimbursements(balances)
- console.log(reimbursements)
return (
<>
@@ -54,6 +53,7 @@ export default async function GroupPage({
reimbursements={reimbursements}
participants={group.participants}
currency={group.currency}
+ groupId={groupId}
/>
</CardContent>
</Card>